home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 45
/
Amiga Format CD45 (1999-09)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-11].iso
/
+system+
/
tools
/
expert
/
devguide
/
mydevice.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-01-25
|
343b
|
14 lines
/* Device Check on a selected volume
V2.0- 10/03/98 - © Age*/
if ~show('L',"rexxreqtools.library") then addlib('rexxreqtools.library',0,-30,0)
Volume = rtfilerequest(,,"Pick a Volume",,"rtfi_volumerequest=vreqf_noassigns")
IF Volume = "" then do
address command '"SetEnv" dev='0
exit
END
address command '"SetEnv" dev='Volume
Exit